class NoOS { public static void main(String[] args) { String os = System.getProperty("os.name"); if (os.equals("Solaris")) { throw new RuntimeException(); } } }